home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
cpp_libs
/
rjs.lha
/
RJS
/
String
/
src
/
op_mult.C
< prev
next >
Wrap
C/C++ Source or Header
|
1991-06-14
|
238b
|
14 lines
#include "String.h"
RJS_String operator *(const RJS_String &s, int mult)
{
RJS_String result(s);
return result *= mult;
}
RJS_String operator *(int mult,const RJS_String &s)
{
RJS_String result(s);
return result *= mult;
}